home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / wdj0696.zip / ZOLMAN.ZIP / HINTTAG.RC < prev    next >
Text File  |  1996-02-19  |  1KB  |  54 lines

  1. /****************************************************************************
  2.  
  3.  
  4. HINTTAG.RC
  5.  
  6. produced by Borland Resource Workshop
  7.  
  8.  
  9. *****************************************************************************/
  10.  
  11. #include "hinttag.rh"
  12. #include <owl/inputdia.rh>
  13.  
  14. HINT_MENU MENU
  15. {
  16.  POPUP "&Hint"
  17.  {
  18.   MENUITEM "Set &Background Color...", CM_BKCOLOR
  19.   MENUITEM "Set &Text Color...", CM_TXCOLOR
  20.   MENUITEM "Set &Font...", CM_FONT
  21.   MENUITEM "Set &Delay...", CM_DELAY
  22.   MENUITEM SEPARATOR
  23.   MENUITEM "E&xit", CM_EXIT
  24.  }
  25.  
  26. }
  27.  
  28. STRINGTABLE
  29. {
  30.  CM_EXIT, "Exits this example"
  31.  CM_BKCOLOR, "Sets the hint tag background color"
  32.  CM_TXCOLOR, "Sets the hint tag window text color"
  33.  CM_FONT, "Sets the hint tag window font"
  34.  CM_DELAY, "Changes the hint tag delay"
  35. }
  36.  
  37. CM_EXIT BITMAP "exit.bmp"
  38. CM_BKCOLOR BITMAP "bkcolor.bmp"
  39. CM_TXCOLOR BITMAP "txcolor.bmp"
  40. CM_FONT BITMAP "font.bmp"
  41. CM_DELAY BITMAP "delay.bmp"
  42.  
  43.  
  44. IDD_INPUTDIALOG DIALOG 20, 24, 101, 84
  45. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | DS_SETFONT
  46. FONT 8, "Helv"
  47. {
  48.  LTEXT "", ID_PROMPT, 8, 8, 84, 26
  49.  EDITTEXT ID_INPUT, 17, 42, 68, 12, WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP | ES_AUTOHSCROLL
  50.  DEFPUSHBUTTON "&OK", IDOK, 8, 62, 40, 14
  51.  PUSHBUTTON "&Cancel", IDCANCEL, 54, 62, 40, 14
  52. }
  53.  
  54.